home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / amusemen / vgatarot.000 / vgatarot / VGATarot-0.3 / zsoftpcx.h < prev   
Text File  |  1994-05-24  |  3KB  |  53 lines

  1. typedef struct Zsheader {
  2.     char mfg;         /* 0x0a if a pcx file */
  3.     char ver;         /* version, probably 5 */
  4.     char encoded;         /* 1 if encoded, 0 if not */
  5.     char bpp;        /* bits per pixel */
  6.     short x1;            /* left column */
  7.     short y1;            /* top row */
  8.     short x2;            /* right column */
  9.     short y2;            /* bottom row */
  10.     short xres;        /* width of screen */
  11.     short yres;        /* height of screen */
  12.     char zpal[48];        /* 3 bytes, pallete register */
  13.     char vmode;        /* video mode, generally ignored */
  14.     char planes;        /* number of color planes in pic */
  15.     short bpl; } zhead;    /* bytes/line in pic */
  16.  
  17. char deck[78][80] = {"0 - The Fool","I - The Magician","II - The High Priestess",
  18.              "III - The Empress","IV - The Emperor","V - The Hierophant",
  19.              "VI - The Lovers","VII - The Chariot","VII - Strength",
  20.              "IX - The Hermit","X - Wheel of Fortune","XI - Justice",
  21.              "XII - The Hanged Man","XII - Death","XIV - Temperance",
  22.              "XV - The Devil","XVI - The Tower","XVII - The Star",
  23.              "XVIII - The Moon","XIX - The Sun","XX - Judgement",
  24.              "XXI - The World","Ace of Cups","II of Cups","III of Cups",
  25.              "IV of Cups","V of Cups","VI of Cups","VII of Cups",
  26.              "VIII of Cups","IX of Cups","X of Cups","Page of Cups",
  27.              "Knight of Cups","Queen of Cups","King of Cups","Ace of Wands",
  28.              "II of Wands","III of Wands","IV of Wands","V of Wands",
  29.              "VI of Wands","VII of Wands","VIII of Wands","IX of Wands",
  30.              "X of Wands","Page of Wands","Knight of Wands","Queen of Wands",
  31.              "King of Wands","Ace of Swords","II of Swords","III of Swords",
  32.              "IV of Swords","V of Swords","VI of Swords","VII of Swords",
  33.              "VIII of Swords","IX of Swords","X of Swords","Page of Swords",
  34.              "Knight of Swords","Queen of Swords","King of Swords",
  35.              "Ace of Pentacles","II of Pentacles","III of Pentacles",
  36.              "IV of Pentacles","V of Pentacles","VI of Pentacles",
  37.              "VII of Pentacles","VIII of Pentacles","IX of Pentacles",
  38.              "X of Pentacles","Page of Pentacles","Knight of Pentacles",
  39.              "Queen of Pentacles","King of Pentacles"};    
  40.              
  41. char filen[78][80] = {    "m00.pcx","m01.pcx","m02.pcx","m03.pcx","m04.pcx","m05.pcx","m06.pcx",
  42.             "m07.pcx","m08.pcx","m09.pcx","m10.pcx","m11.pcx","m12.pcx","m13.pcx",
  43.             "m14.pcx","m15.pcx","m16.pcx","m17.pcx","m18.pcx","m19.pcx","m20.pcx",
  44.             "m21.pcx","c01.pcx","c02.pcx","c03.pcx","c04.pcx","c05.pcx","c06.pcx",
  45.             "c07.pcx","c08.pcx","c09.pcx","c10.pcx","c11.pcx","c12.pcx","c13.pcx",
  46.             "c14.pcx","w01.pcx","w02.pcx","w03.pcx","w04.pcx","w05.pcx","w06.pcx",
  47.             "w07.pcx","w08.pcx","w09.pcx","w10.pcx","w11.pcx","w12.pcx","w13.pcx",
  48.             "w14.pcx","s01.pcx","s02.pcx","s03.pcx","s04.pcx","s05.pcx","s06.pcx",
  49.             "s07.pcx","s08.pcx","s09.pcx","s10.pcx","s11.pcx","s12.pcx","s13.pcx",
  50.             "s14.pcx","p01.pcx","p02.pcx","p03.pcx","p04.pcx","p05.pcx","p06.pcx",
  51.             "p07.pcx","p08.pcx","p09.pcx","p10.pcx","p11.pcx","p12.pcx","p13.pcx",
  52.             "p14.pcx" };
  53.